home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 176-200 / scopedisk180 / arexxtutorial / function_host / lmkfile < prev    next >
Text File  |  1995-03-19  |  502b  |  25 lines

  1. # makefile for RexxFuncHost module and demo
  2. # Lattice 'C'
  3.  
  4.  
  5. CFLAGS= -b1 -cft -mat -q3e -r1s -j85e -j86e -j87e -j88e -O -d0 -v
  6.  
  7.  
  8. # Rule to make a 32 bit int object file
  9. .c.o:
  10.     lc $(CFLAGS)  -o$@  $*.c
  11.  
  12.  
  13. rh_demo:    rh_demo.o   rexxfunchost.o
  14.     blink   NODEBUG BATCH VERBOSE \
  15.         DEFINE __main=__tinymain \
  16.         FROM   LIB:cback.o  $@.o   rexxfunchost.o  LIB:rexxglue.o \
  17.         LIBRARY  LIB:lc.lib  LIB:amiga.lib \
  18.         TO  $@
  19.  
  20.  
  21. rh_demo.o:        rh_demo.c   rexxfunchost.h
  22.  
  23. rexxfunchost.o:        rexxfunchost.c   rexxfunchost.h
  24.  
  25.